home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 21 / CU Amiga Magazine's Super CD-ROM 21 (1998)(EMAP Images)(GB)[!][issue 1998-04].iso / CUCD / Magazine / C_Tutorial / Part-9 / wb0 / test2.rexx < prev    next >
OS/2 REXX Batch file  |  1998-01-03  |  229b  |  13 lines

  1. /* Test Arexx communications */
  2. options results
  3. address hellopainter
  4. text = "Hi from ARexx!"
  5. do j = 1 to 30
  6.   'new'
  7.   do i = 15 to 1 by -1
  8.     'pen' i
  9.     'draw' 50+(2*i) 50+(2*i) text
  10.     'draw' 50+(2*i) 50-(2*i) text
  11.   end
  12. end
  13.